home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / qrep10b.zip / BIOREP.PAS < prev    next >
Pascal/Delphi Source File  |  1996-01-24  |  1KB  |  58 lines

  1. unit Biorep;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, DBCtrls, Quickrep, StdCtrls, ExtCtrls, DB, DBTables;
  8.  
  9. type
  10.   TBioform = class(TForm)
  11.     Table1: TTable;
  12.     DataSource1: TDataSource;
  13.     DetailBand: TQRBand;
  14.     QRDBText1: TQRDBText;
  15.     Biorep: TQuickReport;
  16.     Table1SpeciesNo: TFloatField;
  17.     Table1Category: TStringField;
  18.     Table1Common_Name: TStringField;
  19.     Table1SpeciesName: TStringField;
  20.     Table1Lengthcm: TFloatField;
  21.     Table1Length_In: TFloatField;
  22.     Table1Notes: TMemoField;
  23.     Table1Graphic: TGraphicField;
  24.     DBImage1: TDBImage;
  25.     QRDBText3: TQRDBText;
  26.     QRLabel1: TQRLabel;
  27.     QRDBText4: TQRDBText;
  28.     QRLabel2: TQRLabel;
  29.     QRLabel3: TQRLabel;
  30.     QRDBText5: TQRDBText;
  31.     QRLabel4: TQRLabel;
  32.     TitleBand: TQRBand;
  33.     Image1: TImage;
  34.     QRLabel6: TQRLabel;
  35.     QRLabel7: TQRLabel;
  36.     QRLabel8: TQRLabel;
  37.     QRShape2: TQRShape;
  38.     QRLabel5: TQRLabel;
  39.     QRDBText2: TQRDBText;
  40.     QRBand1: TQRBand;
  41.     QRShape1: TQRShape;
  42.     QRBand2: TQRBand;
  43.     QRSysData1: TQRSysData;
  44.   private
  45.     { Private declarations }
  46.   public
  47.     { Public declarations }
  48.   end;
  49.  
  50. var
  51.   Bioform: TBioform;
  52.  
  53. implementation
  54.  
  55. {$R *.DFM}
  56.  
  57. end.
  58.